home *** CD-ROM | disk | FTP | other *** search
- /* ****************************************************** */
- /* NickServAuth.AmIRX 1.1 by S7reaM <stream@amiga.org.ru> */
- /* Identify you at NickServ IRC service. */
- /* Installation: copy to AmIRC/Rexx directory and rename */
- /* to "Connected.AmIRX". */
- /* Configuring: set your NickServ password and set domain */
- /* of IRC network where you want to be identify. */
- /* ****************************************************** */
- password="mykewlpass" /* SET YOUR NICKSERV PASSWORD HERE */
- ircdomain="undernet.org" /* SET YOUR IRC NETWORK DOMAIN */
- /* DON'T EDIT LINES BELOW */
- Options Results
- "GETSERVERNAME"
- server=upper(result)
- ircnetdomain=upper(ircdomain)
- if(index(server,ircnetdomain)>0) then identme()
- else
- end
- identme:
- "RAW PRIVMSG" NickServ ":identify "password
- "ECHO P="d2c(27)"b«NickServ» C="3 "Registering on NickServ..."
- exit
-